home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / RUBICON.ZIP / RBPHASE.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-09-06  |  853 b   |  45 lines

  1. {*********************************************************}
  2. {*             RBPHASE.PAS 1.11             *}
  3. {*      Copyright (c) Tamarack Associates 1996.     *}
  4. {*           All rights reserved.          *}
  5. {*********************************************************}
  6.  
  7. unit rbPhase;
  8.  
  9. interface
  10.  
  11. uses
  12.   {$IFDEF WIN32}
  13.   Windows,
  14.   {$ELSE}
  15.   WinTypes, WinProcs,
  16.   {$ENDIF}
  17.   SysUtils, Messages, Classes, Graphics, Controls,
  18.   Forms, Dialogs, Gauges, StdCtrls, Buttons, ExtCtrls;
  19.  
  20. type
  21.   TPhaseForm = class(TForm)
  22.     Panel1: TPanel;
  23.     CancelBtn: TBitBtn;
  24.     Gauge: TGauge;
  25.     procedure CancelBtnClick(Sender: TObject);
  26.   private
  27.     { Private declarations }
  28.   public
  29.     { Public declarations }
  30.   end;
  31.  
  32. var
  33.   PhaseForm: TPhaseForm;
  34.  
  35. implementation
  36.  
  37. {$R *.DFM}
  38.  
  39. procedure TPhaseForm.CancelBtnClick(Sender: TObject);
  40. begin
  41.  Close
  42. end;
  43.  
  44. end.
  45.